home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 1 Issue 2 / PDCD-1 - Issue 02.iso / _utilities / utilities / 003 / _gs / !GS / h / GXDEVICE < prev    next >
Text File  |  1991-10-25  |  6KB  |  153 lines

  1. /* Copyright (C) 1989, 1990, 1991 Aladdin Enterprises.  All rights reserved.
  2.    Distributed by Free Software Foundation, Inc.
  3.  
  4. This file is part of Ghostscript.
  5.  
  6. Ghostscript is distributed in the hope that it will be useful, but
  7. WITHOUT ANY WARRANTY.  No author or distributor accepts responsibility
  8. to anyone for the consequences of using it or for whether it serves any
  9. particular purpose or works at all, unless he says so in writing.  Refer
  10. to the Ghostscript General Public License for full details.
  11.  
  12. Everyone is granted permission to copy, modify and redistribute
  13. Ghostscript, but only under the conditions described in the Ghostscript
  14. General Public License.  A copy of this license is supposed to have been
  15. given to you along with Ghostscript so you can know your rights and
  16. responsibilities.  It should be in a file named COPYING.  Among other
  17. things, the copyright notice and this notice must be preserved on all
  18. copies.  */
  19.  
  20. /* gxdevice.h */
  21. /* Device description structure for GhostScript library */
  22. /* Requires gsmatrix.h */
  23.  
  24. /* Define the structure for bitmaps (opaquely). */
  25. typedef struct gx_bitmap_s gx_bitmap;
  26.  
  27. /* Define the type for device color indices. */
  28. typedef unsigned long gx_color_index;
  29. /* Define the 'transparent' color index. */
  30. #define gx_no_color_value (-1)        /* no cast -> can be used in #if */
  31. #define gx_no_color_index ((gx_color_index)gx_no_color_value)
  32.  
  33. /* See drivers.doc for documentation of the driver interface. */
  34.  
  35. /* Structure for device procedures */
  36. typedef struct gx_device_procs_s gx_device_procs;
  37.  
  38. /* Structure for generic device description */
  39. #define gx_device_common\
  40.     int params_size;        /* size of this structure */\
  41.     gx_device_procs *procs;\
  42.     char *dname;            /* the device name */\
  43.     int width;            /* width in pixels */\
  44.     int height;            /* height in pixels */\
  45.     float x_pixels_per_inch;    /* x density */\
  46.     float y_pixels_per_inch;    /* y density */\
  47.     float l_margin, b_margin, r_margin, t_margin;    /* margins around */\
  48.                     /* imageable area, in inches */\
  49.     int has_color;            /* true if device supports color */\
  50.     unsigned short max_rgb_value;    /* max r, g, b value */\
  51.     int bits_per_color_pixel;    /* for copy_color */\
  52.     int is_open            /* true if device has been opened */
  53. #define no_margins 0, 0, 0, 0
  54. /* A generic device */
  55. struct gx_device_s {
  56.     gx_device_common;
  57. };
  58. #ifndef gx_device_DEFINED
  59. #  define gx_device_DEFINED
  60. typedef struct gx_device_s gx_device;
  61. #endif
  62.  
  63. /* Definition of device procedures */
  64. struct gx_device_procs_s {
  65.  
  66. #define dev_proc_open_device(proc)\
  67.   int proc(P1(gx_device *dev))
  68.     dev_proc_open_device((*open_device));
  69.  
  70. #define dev_proc_get_initial_matrix(proc)\
  71.   void proc(P2(gx_device *dev, gs_matrix *pmat))
  72.     dev_proc_get_initial_matrix((*get_initial_matrix));
  73.  
  74. #define dev_proc_sync_output(proc)\
  75.   int proc(P1(gx_device *dev))
  76.     dev_proc_sync_output((*sync_output));
  77.  
  78. #define dev_proc_output_page(proc)\
  79.   int proc(P1(gx_device *dev))
  80.     dev_proc_output_page((*output_page));
  81.  
  82. #define dev_proc_close_device(proc)\
  83.   int proc(P1(gx_device *dev))
  84.     dev_proc_close_device((*close_device));
  85.  
  86. #define dev_proc_map_rgb_color(proc)\
  87.   gx_color_index proc(P4(gx_device *dev,\
  88.     unsigned short red, unsigned short green, unsigned short blue))
  89.     dev_proc_map_rgb_color((*map_rgb_color));
  90.  
  91. #define dev_proc_map_color_rgb(proc)\
  92.   int proc(P3(gx_device *dev,\
  93.     gx_color_index color, unsigned short rgb[3]))
  94.     dev_proc_map_color_rgb((*map_color_rgb));
  95.  
  96. #define dev_proc_fill_rectangle(proc)\
  97.   int proc(P6(gx_device *dev,\
  98.     int x, int y, int width, int height, gx_color_index color))
  99.     dev_proc_fill_rectangle((*fill_rectangle));
  100.  
  101. #define dev_proc_tile_rectangle(proc)\
  102.   int proc(P10(gx_device *dev,\
  103.     gx_bitmap *tile, int x, int y, int width, int height,\
  104.     gx_color_index color0, gx_color_index color1,\
  105.     int phase_x, int phase_y))
  106.     dev_proc_tile_rectangle((*tile_rectangle));
  107.  
  108. #define dev_proc_copy_mono(proc)\
  109.   int proc(P10(gx_device *dev,\
  110.     unsigned char *data, int data_x, int raster,\
  111.     int x, int y, int width, int height,\
  112.     gx_color_index color0, gx_color_index color1))
  113.     dev_proc_copy_mono((*copy_mono));
  114.  
  115. #define dev_proc_copy_color(proc)\
  116.   int proc(P8(gx_device *dev,\
  117.     unsigned char *data, int data_x, int raster,\
  118.     int x, int y, int width, int height))
  119.     dev_proc_copy_color((*copy_color));
  120.  
  121. #define dev_proc_draw_line(proc)\
  122.   int proc(P6(gx_device *dev,\
  123.     int x0, int y0, int x1, int y1, gx_color_index color))
  124.     dev_proc_draw_line((*draw_line));
  125.  
  126. #define dev_proc_fill_trapezoid(proc)\
  127.   int proc(P8(gx_device *dev,\
  128.     int x0, int y0, int width0, int x1, int y1, int width1,\
  129.     gx_color_index color))
  130.     dev_proc_fill_trapezoid((*fill_trapezoid));
  131.  
  132. #define dev_proc_tile_trapezoid(proc)\
  133.   int proc(P12(gx_device *dev, gx_bitmap *tile,\
  134.     int x0, int y0, int width0, int x1, int y1, int width1,\
  135.     gx_color_index color0, gx_color_index color1,\
  136.     int phase_x, int phase_y))
  137.     dev_proc_tile_trapezoid((*tile_trapezoid));
  138.  
  139. };
  140.  
  141. /* Default implementations of optional procedures */
  142. dev_proc_open_device(gx_default_open_device);
  143. dev_proc_get_initial_matrix(gx_default_get_initial_matrix);
  144. dev_proc_sync_output(gx_default_sync_output);
  145. dev_proc_output_page(gx_default_output_page);
  146. dev_proc_close_device(gx_default_close_device);
  147. dev_proc_map_rgb_color(gx_default_map_rgb_color);
  148. dev_proc_map_color_rgb(gx_default_map_color_rgb);
  149. dev_proc_tile_rectangle(gx_default_tile_rectangle);
  150. dev_proc_draw_line(gx_default_draw_line);
  151. dev_proc_fill_trapezoid(gx_default_fill_trapezoid);
  152. dev_proc_tile_trapezoid(gx_default_tile_trapezoid);
  153.